home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-02-13 | 1.4 KB | 62 lines | [TEXT/MPS ] |
- //# Copyright: © 1993 - 1995 by Apple Computer, Inc., all rights reserved.
-
- #ifndef _PFTYPLS_
- #define _PFTYPLS_
-
- #ifndef _ODOBJECT_
- #include "ODObject.idl"
- #endif
-
- //=====================================================================================
- // Classes defined in this interface
- //=====================================================================================
- interface ODPlatformTypeList;
-
- //=====================================================================================
- // Classes used by this interface
- //=====================================================================================
- interface ODPlatformTypeListIterator;
-
-
- //=====================================================================================
- // Class ODPlatformTypeList
- //=====================================================================================
-
- interface ODPlatformTypeList : ODObject
- {
- void AddLast(in ODPlatformType type);
-
- void Remove(in ODPlatformType type);
-
- ODBoolean Contains(in ODPlatformType type);
-
- ODULong Count();
-
- ODPlatformTypeListIterator CreatePlatformTypeListIterator();
-
-
- #ifdef __SOMIDL__
- implementation
- {
- majorversion = 1; minorversion = 0;
-
- functionprefix = ODPlatformTypeList;
-
- override:
- somUninit;
-
- releaseorder:
- AddLast,
- Remove,
- Contains,
- Count,
- CreatePlatformTypeListIterator,
- reserved1,
- reserved2;
-
- };
- #endif //# __SOMIDL__
- };
-
- #endif //# _PFTYPLS_
-